home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac 1993 September / clonecd / September 93.img / Australasian Legends / Commercial / Golden Micro Solutions / Commander Demo / Commander Demo.rsrc / TEXT_5028_ARRAY TO SELECTION.txt < prev    next >
Text File  |  1993-09-07  |  2KB  |  37 lines

  1. ARRAY¬†TO¬†SELECTION (array1; field1; {arrayN; fieldN})
  2.                                                                                     Pg 13-12
  3.  
  4. array       Array          Array to copy to the selection
  5. field           Field             Field to receive the array data
  6.  
  7.  
  8. Copies one or more arrays into a selection of records based on the order of the array elements and the records. All fields must be from the same file. If there are more elements than records, new records are created.
  9.  
  10. ARRAY TO SELECTION copies one or more arrays into a selection of records. All fields listed must belong to the same file.
  11. ARRAY TO SELECTION generates an error if the command cannot be executed.
  12.  
  13. If a selection already exists, the elements of the arrays are put into the records, based on the order of the array and the order of the records. If there are more elements than there are records, then new records are created. The records, whether they are new or existing ones, are automatically saved.
  14.  
  15. If the arrys are different sizes, the first array is used to determine how many elements to copy. Any additional arrays are also moved into the field that follows each array name.
  16.  
  17. This command is the complement of SELECTION¬†TO¬†ARRAY. The ARRAY TO SELECTION command does not allow fields from related files even when an automatic relation exists. The command modifies the current selection and the current record.
  18.  
  19.  
  20. When the ARRAY TO SELECTION command is executed, the LockedSet variable can be tested to determine whether certain records are locked or not.
  21.  
  22.  
  23.  
  24. WARNING:  ARRAY TO SELECTION overwrites information in existing records, and so should be used with caution.
  25.  
  26. 4D SERVER: The command is optimised for the 4D Server. The command is executed on the server. If any records are locked they will not be replaced.
  27.  
  28.  
  29. In the following example, the two arrays F and C put data into the [People] file. The F array is put in the First field, and the C array is put in the Company field.
  30.  
  31.       ARRAY TO SELECTION(F;[People]First;C;[People]Company)
  32.  
  33.  
  34.  
  35. See also: ARRAY¬†TO¬†LIST, SELECTION¬†TO¬†ARRAY
  36.  
  37.